home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 1 / PC World Interactive 1 - Nisan 1997.iso / nostalji / bbs / prog / fp97be~1.exe / RCDATA / CABINET / data.z / srm.org < prev    next >
Text File  |  1996-09-28  |  6KB  |  161 lines

  1. #----------------------------------------------------------------------
  2. #
  3. #   SRM.CNF
  4. #
  5. # Server resource configuration for the FrontPage Personal Web Server
  6. #
  7. # The settings in this file control the document layout and name specs
  8. # that your server makes visible to users. The values in the comments
  9. # are the defaults built into the server.
  10. #
  11. # Server configuration commands are similar to those for the NCSA
  12. # server version 1.3R.  If you have questions please see the online
  13. # documentation at http://hoohoo.ncsa.uiuc.edu
  14. #
  15. # NOTE: path defaults are relative to the server's installation
  16. #       directory (ServerRoot). Paths should be given in Unix
  17. #       format (using '/').
  18. #
  19. #----------------------------------------------------------------------
  20. #
  21. # DocumentRoot: The directory out of which you will serve your
  22. # documents. By default, all requests are taken from this directory, but
  23. # aliases may be used to point to other locations.
  24. #
  25. DocumentRoot VCONTENT
  26.  
  27. # DirectoryIndex: Name of the file to use as a pre-written HTML
  28. # directory index. This document, if present, will be opened when the
  29. # server receives a request containing a URL for the directory, instead
  30. # of generating a directory index.
  31. #
  32. # DirectoryIndex index.htm
  33.  
  34. # AccessFileName: The name of the file to look for in each directory
  35. # for access control information. This file should have a name which is
  36. # blocked from appearing in server-generated indexes!
  37. #
  38. # AccessFileName #haccess.ctl
  39.  
  40. # UserDir is not supported on Windows
  41. UserDir DISABLED
  42.  
  43. # ========================
  44. # Aliasing and Redirection
  45. # ========================
  46. #
  47. # Redirect allows you to tell clients about documents which used to exist in
  48. # your server's namespace, but do not anymore. This allows you to tell the
  49. # clients where to look for the relocated document.
  50. #
  51. # Format: Redirect fakename url
  52. #
  53.  
  54. # Aliases: Add here as many aliases as you need, up to 20. One useful
  55. # alias to have is one for the path to the icons used for the server-
  56. # generated directory indexes. The paths given below in the AddIcon
  57. # statements are relative.
  58. #
  59. # Format: Alias fakename realname
  60. #
  61. Alias /icons/ VSERVER/icons/
  62.  
  63. # ScriptAlias: This controls which directories contain DOS server
  64. #              scripts.
  65. #
  66. # Format: ScriptAlias fakename realname
  67. #
  68. #ScriptAlias /cgi-dos/ VCONTENT/cgi-dos/
  69.  
  70. # WinScriptAlias: This controls which directories contain Windows
  71. #              server scripts.
  72. #
  73. # Format: WinScriptAlias fakename realname
  74. #
  75. #WinScriptAlias /cgi-win/  VCONTENT/cgi-win/
  76.  
  77. # =========================
  78. # MIME Content Type Control
  79. # =========================
  80. #
  81. # DefaultType is the default MIME type for documents which the server
  82. # cannot find the type of from filename extensions.
  83. #
  84. # DefaultType text/html
  85. DefaultType text/plain
  86.  
  87. # AddType allows you to tweak MIME.TYP without actually editing it, or to
  88. # make certain files to be certain types.
  89. #
  90. # Format: AddType type/subtype ext1
  91. #
  92.  
  93. # ReadmeName is the name of the README file the server will look for by
  94. # default.  The server will first look for name.htm, include it if found,
  95. # and it will then look for name.txt and include it as plaintext if found.
  96. # NOTE: Do not include an explicit extension, it is an error.
  97. #
  98. # Format: ReadmeName name
  99. #
  100. ReadmeName #readme
  101.  
  102. # ============================
  103. # AUTOMATIC DIRECTORY INDEXING
  104. # ============================
  105. #
  106. # The server generates a directory index if there is no file in the
  107. # directory whose name matches DirectoryIndex.
  108. #
  109. # FancyIndexing: Whether you want fancy directory indexing or standard
  110. #
  111. # FancyIndexing on
  112.  
  113. # IconsAreLinks: Whether the icons in a fancy index are links as
  114. # well as the file names.
  115. #
  116. # IconsAreLinks off
  117.  
  118. # AddIcon tells the server which icon to show for different files or filename
  119. # extensions. In preparation for the upcoming Chicago version, you should
  120. # include explicit 3 character truncations for 4-character endings. Don't
  121. # rely on the DOS underpinnings to silently truncate for you.
  122. #
  123. AddIcon /icons/text.gif     .html   .htm    .txt    .ini
  124. AddIcon /icons/image.gif    .gif    .jpg    .jpe    .jpeg   .xbm    .tiff   .tif    .pic    .pict     .bmp
  125. AddIcon /icons/sound.gif    .au     .wav    .snd
  126. AddIcon /icons/movie.gif    .mpg    .mpe    .mpeg
  127. AddIcon /icons/binary.gif   .bin    .exe    .bat    .dll
  128. AddIcon /icons/back.gif     ..
  129. AddIcon /icons/menu.gif     ^^DIRECTORY^^
  130. AddIcon /icons/dblank.gif       ^^BLANKICON^^
  131.  
  132. # DefaultIcon is which icon to show for files which do not have an icon
  133. # explicitly set.
  134. #
  135. DefaultIcon /icons/unknown.gif
  136.  
  137. # AddDescription allows you to place a short description after a file in
  138. # server-generated indexes. A better place for these are in inidividual
  139. # "#haccess.ctl" files in individual directories.
  140. #
  141. # Format: AddDescription "description" filename
  142. #
  143.  
  144. # IndexIgnore is a set of filenames which directory indexing should ignore
  145. # Here, I've disabled display of our readme and access control files,
  146. # plus anything that starts with a "~", which I use for annotation HTML
  147. # documents. I also have disabled some common editor backup file names.
  148. # Match is on file NAME.EXT only, and the usual * and ? meta-chars apply.
  149. #
  150. # WARNING: Be sure to set an ignore for your access control file(s)!!
  151. #
  152. # Format: IndexIgnore name1 name2...
  153. #
  154. IndexIgnore  ~* *.bak *.{* #readme.htm #haccess.ctl
  155.  
  156. WinScriptAlias /cgi-bin/imagemap VCONTENT/cgi-bin/imagemap.exe
  157. WinScriptAlias /cgi-bin/htimage  VCONTENT/cgi-bin/htimage.exe
  158.  
  159. ## END ##
  160.